@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
    display: flex;
    flex-direction: column;
  
    background-color: #f8f8f8;
    overflow-x: clip;
}






nav {
  display: flex;
  height: 100px;
  width: 100%;
  background: #fcfcfc;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgb(0 0 0 / 50%); /* Adds a subtle box shadow */
}




nav ul {
  
  display: flex;
  margin-right: 100px;
  margin-bottom: -2px;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 5px;
}



nav ul li a.active {
  color: #164727;
}

nav ul li a:hover {
  background-color: #fff;
  color: black;
}

/* Change background color for "Customize Trip" */
#customize-link {
  background-color: #164727;
  /* Add your desired color */
  color: #ffffff;
  /* Optional: Change text color */
}

#customize-link:hover {
  background-color: #073513;
  /* Change the hover color if needed */
  color: white;
  /* Optional: Keep the text color on hover */
}


/* CSS: FOR THE Under line animation in nav bar*/
nav .menu-btn i {
  margin-left: -36px;
  color: #055222;
  font-size: 22px;
  cursor: pointer;
  display: none;
  

}

input[type="checkbox"] {
  display: none;
}



nav ul li a {
  color: #164727;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  position: relative;
  /* Needed for the pseudo-element */
  transition: all 0.3s ease;
}

nav ul li a::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #164727;
  /* Color of the underline */
  transition: width 0.4s ease-in-out;
}

nav ul li a:hover::before {
  width: 100%;
  /* Full underline on hover */
}



/* END  CSS: FOR THE Under line animation in nav bar*/

/* Show the hamburger menu on smaller screens */
@media (max-width: 1000px) {
  nav {
    padding: 0 20px;
  }

  nav .menu-btn i {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 141px;
    /* Adjusted to prevent overlap with the logo */
    left: -111%;
    background: #fff;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  /* When the checkbox is checked, show the menu */
  #click:checked~ul {
    left: -0px;
  }

  nav ul li {
    width: 100%;
    margin: 30px 0;
  }

  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 22px;
    /* Increased for mobile readability */
    padding: 10px 0;
    transition: 0.5s ease-in-out;
  }

  /* When checked, reset the margin for animation */
  #click:checked~ul li a {
    margin-left: 0;
  }

  /* Mobile hover effects */
  nav ul li a.active,
  nav ul li a:hover {
    background: none;
    color: rgb(0, 0, 0);
  }
}

/* Larger mobile devices, slight adjustments */
@media (max-width: 480px) {
  nav .menu-btn i {
    font-size: 21px;
    /* Slightly smaller for very small screens */
    margin-right: 19px;
  }

  nav ul {
    top: 120px;
    /* Adjusted for smaller screen heights */
  }

  nav ul li a {
    font-size: 20px;
    padding: 12px 0;
  }
}

/* Add this to your existing CSS */
/* Between 921px and 1270px media query */
@media (min-width: 921px) and (max-width: 1270px) {
  nav {
    padding: 0 20px;
    /* Reduce padding to create more space */
    justify-content: space-between;
    /* Ensure the logo and menu items are spaced out evenly */
  }

  nav ul {
    margin-right: 0;
    /* Remove the large right margin to give more space */
    flex-grow: 1;
    /* Allow the ul to take up more space */
    justify-content: flex-end;
    /* Align the links to the right */
  }

  nav .logo {
    flex-grow: 1;
    /* Allow the logo to take up its own space */
    max-width: 30%;
    /* Restrict the logo width to avoid overlap */
  }

  nav ul li {
    margin: 0 10px;
    /* Add consistent margin to prevent overflow */
  }

  nav ul li a {
    padding: 6px 10px;
    /* Slightly reduce padding to prevent wrapping */
    font-size: 16px;
    /* Slightly reduce font size */
  }
}




@media (max-width: 1400px) {
  nav {
    padding: 0 30px;
    /* Reduce padding */

  }



  nav ul li a {

    padding: 6px 10px;
    /* Reduce padding around links */
  }
}

@media (min-width: 921px) and (max-width: 1005px) {
  nav {
    padding: 0 5px;
    /* Reduce padding even more */
    justify-content: space-between;
  }

  nav ul {
    margin-right: 0;
    flex-grow: 1;
    justify-content: flex-end;
  }

  nav .logo {
    flex-grow: 1;
    max-width: 35%;
    /* Reduce logo size further */
  }

  nav ul li {
    margin: 0 3px;
    /* Decrease margin between items */
  }

  nav ul li a {
    padding: 4px 7px;
    /* Reduce padding for links */
    font-size: 14px;
    /* Reduce font size for better fit */
  }
}


@media (min-width: 1005px) and (max-width: 1500px) {
  nav {
    padding: 0 15px;
    /* Adjust padding to create more space */
    justify-content: space-between;
    /* Ensure elements are spread evenly */
  }

  nav ul {

    margin-right: 95px;
    flex-grow: 1;
    justify-content: flex-end;
    /* Ensure links align to the right */
  }

  nav .logo {
    max-width: 30%;
    /* Adjust logo size */
    flex-grow: 1;
    /* Make sure logo occupies its space */
  }

  nav ul li {
    margin: 0 4px;
    /* Slightly reduce space between menu items */
  }

  nav ul li a {
    padding: 5px 9px;
    /* Adjust padding to fit menu items */
    font-size: 15px;
    /* Slightly reduce font size */
  }
}






/* Cross button for the button */
.close-btn {
  display: none; /* Hide by default */
  cursor: pointer;
  color: #055222; /* Adjust color as needed */
  font-size: 22px;
  margin-right: 20px; /* Adjust spacing as needed */
}

/* Show close button on mobile */
@media (max-width: 1000px) {
  .close-btn {
      display: block; /* Show the close button on mobile */
  }
}

/* Adjust the positioning of the close button */
@media (max-width: 1000px) {
  .close-btn {
      position: absolute;
      top: 5px; /* Adjust as needed */
      right: 6px; /* Adjust as needed */
  }
}

/* Checkbox to control the menu visibility */
input[type="checkbox"] {
  display: none; /* Hide the checkbox */
}

/* When the checkbox is checked, hide the nav */
input[type="checkbox"]:checked ~ ul {
  left: -100%; /* Move the menu out of view */
}









.contact-bg{
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.8)), url('https://firebasestorage.googleapis.com/v0/b/devrex-628fe.appspot.com/o/The%20Trekkerz%2FPack%20Your%20Bags%2C%20Let%E2%80%99s%20Go!.jpg?alt=media&token=6f83e520-614b-4e12-8d6c-1a792360face');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-bg h3{
  font-size: 1.3rem;
  font-weight: 400;
}
.contact-bg h2{
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
}
.line div{
  margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
  height: 3px;
  width: 70px;
  background: #055222;
  border-radius: 5px;
}
.line{
  display: flex;
  align-items: center;
}
.line div:nth-child(2){
  width: 10px;
  height: 10px;
  background: #055222;
  border-radius: 50%;
}
.text{
  font-weight: 300;
  opacity: 0.9;
}
.contact-bg .text{
  margin: 1.6rem 0;
}
.contact-body{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-info{
  margin: 2rem 0;
  text-align: center;
  padding: 2rem 0;
}
.contact-info span{
  display: block;
}
.contact-info div{
  margin: 0.8rem 0;
  padding: 1rem;
}
.contact-info span .fas{
  font-size: 2rem;
  padding-bottom: 0.9rem;
  color: #055222;
}
.contact-info div span:nth-child(2){
  font-weight: 500;
  font-size: 1.1rem;
}
.contact-info .text{
  padding-top: 0.4rem;
}
.contact-form{
  padding: 2rem 0;
  border-top: 1px solid #c7c7c7;
}
.contact-form form{
  padding-bottom: 1rem;
}



@media screen and (min-width: 768px){
  .contact-bg .text{
      width: 70%;
      margin-left: auto;
      margin-right: auto;
  }
  .contact-info{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
}









.about-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem; /* Flexible padding for spacing */
  background: linear-gradient(135deg, #f5f7fa, #164727);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-us-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 2rem;
}

.about-us-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.about-us-text {
  font-size: 1rem;
  
  line-height: 1.8;
}

.about-us-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.highlight {
  background: #fff;
  padding: 1.5rem;
  width: 300px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.highlight p {
  font-size: 0.9rem;
  color: #666;
}


































                                                      /* Style for dropdown container */
/* Style for dropdown container */

.dropdown {
  position: relative;
}

/* Style for the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfcfc;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  min-width: 200px;
}

/* Style for dropdown links */
.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  color: #164727;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.dropdown-content li a:hover {
  background-color: #164727;
  color: white;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block; /* Show the dropdown on hover */
}

/* Ensure dropdown menu aligns well for larger screens */
@media (min-width: 1005px) {
  .dropdown-content {
    top: 100%;
    left: 0;
    max-height: none; /* Remove max-height for larger screens */
    overflow: visible; /* Ensure all items are visible */
  }
}

/* For smaller screens, ensure dropdown stays full width */
@media (max-width: 1000px) {
  .dropdown-content {
    position: static;
    background-color: transparent;
    box-shadow: none;
    max-height: 200px; /* Adjust as needed for mobile */
    overflow-y: auto; /* Enable vertical scrolling on mobile */
    z-index: 2000; /* Ensure it appears above other elements */
  }

  .dropdown-content li a {
    padding: 12px;
    font-size: 16px;
    
    background-color: #fff;
  }

  .dropdown-content li a:hover {
    background-color: #164727;
  }
}




                                          /* Styles for top contact section inside navbar */
.top-contact {
  display: flex;
  margin-bottom: 100px;
  margin-left: 100px;

  align-items: center;

  color: rgb(15, 15, 15);
  font-size: 14px;

}

.top-contact .contact-item {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.top-contact .contact-item i {
  margin-right: 8px;
}

.top-contact a {
  color: white;
  text-decoration: none;
}




/* Top Navbar */
.top-nav {
  width: 100%;
  background-color: #e7f0ea;
  /* Adjust the background color as needed */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 14px;
  position: sticky;
  top: 0;
}

.top-nav-content {
  margin-left: -0px;
  display: flex;
  font-size: medium;
  color: #164727;


}

.top-nav .contact-item {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.top-nav .contact-item i {
  margin-right: 5px;
}

.top-nav a {
  color: #164727;
  text-decoration: none;
}

/* Main Navbar (your existing navbar) */





/* Media Queries for Large Mobiles */
@media (max-width: 768px) {
  .top-nav {
    height: 40px;
    font-size: 12px;
  }

  .top-nav-content {
    font-size: small;
  }

  .top-nav .contact-item {
    margin: 0 3px;
  }



  nav a {
    font-size: small;
  }
}

/* Media Queries for Small Mobiles */
@media (max-width: 480px) {
  .top-nav {
    height: 35px;
    font-size: 11px;
  }

  .top-nav-content {
    font-size: x-small;
    margin-left: -40px;
  }

  .top-nav .contact-item {
    margin: 0 2px;
  }



  nav a {
    font-size: x-small;
  }
}
 









/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #128c7e;
}

.whatsapp-icon {
  width: 67%;
  height: 100%;
  
}







































  

                               /*********************** footer section ************************/


/* General footer styles */
footer {
  background-color: #164727;
  width: 100%;
  /* Dark green background */
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  /* Ensure consistent font */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 20px;
  flex: 1;
  min-width: 200px;
  /* Ensure a minimum width for better layout */
}

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  color: #ccc;
  margin-bottom: 15px;
  font-size: 18px;
  /* Slightly larger font size for headings */
}

.latest-updates form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Space between input and button */
}

.latest-updates input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  /* Ensure input takes full width */
  max-width: 300px;
  /* Limit width for larger screens */
}

.latest-updates button {
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  /* Green button */
  color: white;
  cursor: pointer;
}

.latest-updates button:hover {
  background-color: #45a049;
  /* Slightly darker green on hover */
}

.more-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.more-info ul li {
  margin: 10px 0;
}

.more-info ul li a {
  font-family: 'Poppins', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 16px;
  /* Slightly larger font size */
}

.more-info ul li a:hover {
  text-decoration: underline;
  /* Underline on hover */
}

.social-icons a {
  font-family: 'Poppins', sans-serif;
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 24px;
  /* Larger icon size */
}

.social-icons a:hover {
  color: #4CAF50;
  /* Green color on hover */
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.footer-links {
  margin-top: 10px;
  font-size: 14px;
  /* Slightly smaller font size */
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  /* Underline .developer-credit {
  font-size: 20px; /* Adjust font size as needed */
  color: #ffffff;
  /* Set a neutral color for the text */
  text-align: center;
  /* Center the text */
  margin-top: 20px;
  /* Add some space above */
}

.developer-credit a {
  color: #000000;
  /* Set the link color */
  text-decoration: none;
  /* Remove the underline */
  font-weight: bold;
  /* Make the link bold */
  transition: color 0.3s ease;
  /* Smooth transition for hover effect */
}

.developer-credit a:hover {
  color: #000000;
  /* Change link color on hover */
  text-decoration: underline;
  /* Add underline on hover */
}


.developer-credit {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.developer-credit a {
  background-color: #4CAF50;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.developer-credit a:hover {
  background-color: #45a049;
  transform: scale(1.05);
}



input[type="date"],
input[type="text"],
input[type="number"],
select {
  border: none;
  border-radius: 20px;
  padding: 10px;
  width: 80%;
  /* Ensures the input fields take full width within their container */
  margin-top: 5px;
  font-size: 1em;
}


.footer-bottom .info {
  color: white;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}



/*********************** footer section ************************/












  